/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: linear-gradient(to right, #2a9296, #42a088);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    width: 350px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.login-container h1 {
    font-size: 24px;
    color: #4e54c8;
    margin-bottom: 5px;
}

.login-container h2 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #444;
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 6px;
    color: #333;
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #aaa;
    border-radius: 8px;
    transition: 0.3s;
}

input:focus {
    border-color: #4e54c8;
    outline: none;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: #4e54c8;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #3b40a4;
}

.note {
    margin-top: 20px;
    font-size: 14px;
}

.note a {
    color: #4e54c8;
    text-decoration: none;
}

.note a:hover {
    text-decoration: underline;
}
